Skip to content

Instantly share code, notes, and snippets.

View imarban's full-sized avatar
🎯
Focusing

IM imarban

🎯
Focusing
View GitHub Profile
@imarban
imarban / parent.xml
Created November 10, 2015 18:33
Starter Parent Pom Spring Boot
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.2.7.RELEASE</version>
</parent>
@imarban
imarban / permutations-python
Last active August 27, 2015 23:42
Get all the permutations of a word
This code aims to get all the permutations of a word.
e.g. If the "abc" string is received, the otuput will be ["abc", "bca", "cba", "cab", "acb", "bac"]