- https://www.bitoex.com/
- Topup from "Family Mart"
Swagger is the world's most popular framework for APIs.
[Swagger] (http://swagger.io/)
Install plugin on Intellij.
Under Intellij Preferences
->Plugin
->Browse repositories...
Search keyword : Swagger
Install it and restart Intellij.
##Checkstyle
It is a Intellij plugin, helps you to check your code, import, javadoc etc.
[Checkstyle Intellij plugin] (https://github.com/jshiell/checkstyle-idea)
- Community Edition (14.1.5)
- Community Edition (15.0.6)
- Community Edition (2016.1)
Implement the well-known power
function in two different new ways. The power function takes two arguments n and k and computes nk. Your implementation only has to work for non-negative integer k. The following is a straightforward implementation of this function:
power :: Int -> Int -> Int
power n k | k < 0 = error "power: negative argument"
power n 0 = 1
power n k = n * power n (k-1)
You will implement two more ways in this part.
Motivation: compute the minimal number of changes needed to transform one string into another. Goal: find “cheapest” sequence of editing steps using operations
- Change a character
- Copy a character without change
- Delete a character
- Insert a character
- Kill rest of string (delete to end)