99-problems icon indicating copy to clipboard operation
99-problems copied to clipboard

This is an adaptation of the Ninety-Nine Prolog Problems written by Werner Hett.

Results 9 99-problems issues
Sort by recently updated
recently updated
newest added

adjusted the build, library versions and gradle wrapper. It still fails on the latest Ubuntu using JDK 8 and JDK 15 but all others are fine now. Both fails are...

Please create separate branches for each language with tests only so that it will be easier for others to try the problems themselves

I think you'd better use my codes below: ``` public static E findKthRecursive(LinkedList list, Integer k){ if(list.size()==0 || list==null){ throw new NoSuchElementException("No elements in this list"); } if(k >= list.size()){...

Hi, I have solved the problem 50 for the binary trees. Please review and merge if correct. Thanks Dhwani

https://github.com/shekhargulati/99-problems/blob/ddc4998812a1a6a63772dc6a6ee9fb5aeb14ed6f/java8/src/main/java/com/shekhargulati/leetcode/algorithms/Problem01.java#L57

For example. Java8 -> Graphs( Doesnt work )

first, thanks a lot for your help. i feel sorry for bothering you, but i am wondering where is the uncompleted code from P50-P99 in java8?

I have added the stream version to sort lists of list on the list length frequency. Let me know if this is fine.