- DMM.com(旧DMM.comラボ含む)
- DMM.comラボ16新卒エンジニア研修 - (2016/08/24)
- DMM.comの新卒技術研修がスタートしました! - (2019/04/25)
- GMOインターネット
- 「Web 基礎」という講義をしました - (2019/05/17)
- GMOペパボ
- 2013 年の新卒研修メニュー
- ペパボ新卒エンジニアの研修を開始している - (2013/05)
- 第二新卒研修をしていた - (2014/08)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package naka; | |
import java.util.Random; | |
/** | |
* Created by rinp on 2016/11/07. | |
*/ | |
public class AlgorithmOne { | |
private static AlgorithmOne algo = new AlgorithmOne(); | |
Condition wolf = Condition.LEFT_FIELD; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function (length) { | |
return function (str) { | |
var max = length - str.length; | |
// 利用する文字列長を考慮の上で初期値を決めておく。 | |
var s = "0000"; | |
while (s.length < max) { | |
s += "00"; | |
} | |
return (s + str).slice(-length); |