updated bookmarks in chrome

This commit is contained in:
a.pivkin 2025-09-10 06:36:10 +03:00
parent a4cc005559
commit bff28673d3

View File

@ -1,23 +1,6 @@
package main
<<<<<<< Updated upstream
import "fmt"
func ending(start, end string) bool {
// your code here
if start[len(start)-len(end):] == end {
fmt.Println("true")
return true
}
fmt.Println("false")
return false
}
func main() {
ending("abc","bc")
ending("abc","d")
=======
import (
"fmt"
"strings"
@ -41,5 +24,4 @@ func main() {
ToCamelCase("the-stealth-warrior")
// ToCamelCase("The_Stealth_Warrior")
// ToCamelCase("The_Stealth-Warrior")
>>>>>>> Stashed changes
}