add directory Lapindrome in exercises/
See original GitHub issueadding lapindrome.py and example.py in python/exercises/Lapindrome
Issue Analytics
- State:
- Created 6 years ago
- Comments:6 (3 by maintainers)
Top Results From Across the Web
Programming Assignment #7
This assignment contains two exercises based on linked list and stack classes ... Modify the List class (file list.h) to add the following ......
Read more >Solutions to Exercises from Lab Session 05
Exercise 1: Palindromes with Awk. a) Apply the palindromes script to a large word list in order to find as many palindrome words...
Read more >C Exercises: String representation of common directory paths
C programming, exercises, solution : Write a program in C language to get a part of the directory tree that is common to...
Read more >Exercise: Alien Language Pattern Matching - The Code Ship
For every string pattern, move through it character by character. If an alphabetical character is found just add it to a list(line), on...
Read more >Exercises - Runestone Academy
Note: For programming exercises, first draw a UML class diagram describing ... Write a method that could be added to the TextIO program...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@m-a-ge the given program in /exercises/Lapindrome is used to check weather the given number is lapindrome or not i.e. it divides the given strings in two equal parts and then check the frequency of character in both halves of string . If the frequency of characters are equal then it is lapindrome else not
@m-a-ge he added a python file
lapindrome.py
in /exercises/LapindromeWhat is lapindrome ?
Lapindrome is defined as a string which when split in the middle, gives two halves having the same characters and same frequency of each character. If there are odd number of characters in the string, we ignore the middle character and check for lapindrome