Skip to content
Open

m #329

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions C++/Arrays/Trapping the rain water.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,4 @@ int main(){
cout << trapped_water(array,size);
return 0;
}
//Trapping Rain water on Array
2 changes: 2 additions & 0 deletions C++/Recursion/Permutation of a string.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,5 @@ int main(){
permutation(str,0,4);
return 0;
}
//
//
1 change: 1 addition & 0 deletions C++/new.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
//
1 change: 1 addition & 0 deletions C++/new11.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
// new
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@

#ReadMeFile
<h2>Please visit my wiki link for full list of questions</h2>
<h3>https://github.com/mission-peace/interview/wiki</h3>

Expand Down
4 changes: 2 additions & 2 deletions gradlew
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#!/usr/bin/env bash

##############################################################################
#############################################################################
##
## Gradle start up script for UN*X
##
##############################################################################
############################################################################

# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS=""
Expand Down
2 changes: 1 addition & 1 deletion python/array/countinversionofsize3.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# http://www.geeksforgeeks.org/count-inversions-of-size-three-in-a-give-array/

def find_inversions(input):
def find_inversions(input):
inversion = 0
for i in range(1, len(input) - 1):
larger = 0
Expand Down
3 changes: 3 additions & 0 deletions src/com/interview/array/AdditiveNumber.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,6 @@ private boolean isValid(String num, int start, BigInteger x1, BigInteger x2) {
return num.startsWith(x3.toString(), start) && isValid(num, start + x3.toString().length(), x2, x3);
}
}