# leetcode **Repository Path**: leetcode2022/leetcode ## Basic Information - **Project Name**: leetcode - **Description**: 你有一套活字字模 tiles,其中每个字模上都刻有一个字母 $tiles[i]$。返回你可以印出的非空字母序列的数目。 注意:本题中,每个活字字模只能使用一次。 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-07-04 - **Last Updated**: 2023-07-16 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## leetcode 打卡仓库 ### 首次使用说明 1. 拉取远程仓库 ``` git clone https://gitee.com/leetcode2022/leetcode.git ``` 2. 创建自己的分支。建议分支名可以让别人知道这是谁的分支,比如你中文名的首字母缩写。 ``` git branch [分支名] ``` 3. 切换到自己的分支。 ``` git checkout [分支名] ``` 之后就可以愉快的刷题啦! ### 代码提交三板斧 ``` git add . git commit -m "提交信息" git push origin [分支名] ``` ### 注意事项 - 传代码时记得看一下当前有没有切换到你的分支