From bff28673d37b351d46ccb9833d33b26b4e847120 Mon Sep 17 00:00:00 2001 From: "a.pivkin" Date: Wed, 10 Sep 2025 06:36:10 +0300 Subject: [PATCH] updated bookmarks in chrome --- codewars/main.go | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/codewars/main.go b/codewars/main.go index a56b494..87d0740 100644 --- a/codewars/main.go +++ b/codewars/main.go @@ -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 }