Skip to content

Commit 21a6d59

Browse files
committed
git
1 parent 450735a commit 21a6d59

File tree

3 files changed

+44
-125
lines changed

3 files changed

+44
-125
lines changed

.gitignore

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# Created by .ignore support plugin (hsz.mobi)
2+
### TortoiseGit template
3+
# Project-level settings
4+
/.tgitconfig
5+
### Maven template
6+
target/
7+
pom.xml.tag
8+
pom.xml.releaseBackup
9+
pom.xml.versionsBackup
10+
pom.xml.next
11+
release.properties
12+
dependency-reduced-pom.xml
13+
buildNumber.properties
14+
.mvn/timing.properties
15+
16+
# Avoid ignoring Maven wrapper jar file (.jar files are usually ignored)
17+
!/.mvn/wrapper/maven-wrapper.jar
18+
### Java template
19+
# Compiled class file
20+
*.class
21+
22+
# Log file
23+
*.log
24+
25+
# BlueJ files
26+
*.ctxt
27+
28+
# Mobile Tools for Java (J2ME)
29+
.mtj.tmp/
30+
31+
# Package Files #
32+
*.jar
33+
*.war
34+
*.nar
35+
*.ear
36+
*.zip
37+
*.tar.gz
38+
*.rar
39+
40+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
41+
hs_err_pid*
42+
43+
/.idea/

.idea/uiDesigner.xml

Lines changed: 0 additions & 124 deletions
This file was deleted.

src/main/java/com/algorithm/study/demo/string/TestString.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public int Index(String s,String t,int pos){
2828
}
2929
}
3030

31-
if (j>=t.length()) {
31+
if (j>=t.length()) {
3232
return i-t.length();
3333
}else {
3434
return -1;

0 commit comments

Comments
 (0)