问题标签 [codewarrior]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
3 回答
84 浏览

python - 尝试操作字符串时在 codewars 上收到退出代码错误

如果可能,请不要包含任何剧透。

我正在研究 Kata Exclamation Marks series #1: Remove an exclamation mark from the end of string and has been received an IndexError: string index out of range尽管我的代码执行正确。

该程序的目的是从字符串末尾删除一个感叹号(如果存在)。

错误出现在: if s[len(s)-1] == '!':

如果有人能解释为什么我会收到这个错误,那将不胜感激!

0 投票
0 回答
28 浏览

nxp-microcontroller - Stepping over a library (in-built) function in NXP FXTH870911

I am using CodeWarrior Development Studio and an example program from NXP to understand the functioning of the FXTH870911 chip. The program downloaded from their website is called FXTH_FW_BLE_Beacon_by_GenFSK. So they have some built in functions in a section of the flash that is factory loaded and one such function is TPMS_LF_ENABLE() as shown below. Since the code of these functions are not accessible, we can't step into the function (or you will be shown a "no source available" error). However, the problem is, that even if I try to step over this function, it steps inside and gets stuck there. I see the "no source available" message and the disassembly as shown below.

How do I exit out of this function or not enter it in the first place?

Thanks Tushar

0 投票
0 回答
17 浏览

codewarrior - 整数值到十六进制值赋值

我想将整数十进制值转换为 c 的十六进制表示。

a = 1;

a = 0x01;

对于大多数编译器来说,以上两种表示是相同的,

但我的 IDE 似乎不支持。(我在这个项目中使用 Codewarrior IDE)

变量在我的头文件中a被声明为类型。tU08(大小:与 char 相同,8 位)

如果我检查结果,它不会被分配为 a = "0x01";

所以,我想使用 int 到 hex 转换器,但我只能描述为这样的字符串"0x01"

我应该怎么办?

0 投票
2 回答
86 浏览

javascript - 食品排行榜挑战赛(TestDome)

我被困在这个挑战上,所以我需要帮助。

一个网站需要一个列表,用户可以在其中对他们最喜欢的食物进行排名。编写 setup 函数,它应该在所有 Up 上注册点击处理程序!和下来!纽扣。向上!按钮应将列表项在列表中向上移动一位,而向下!按钮应将列表项在列表中向下移动一位。

例如,考虑以下代码:

如果按钮向上!单击 Pizza 列表项中的按钮,Pizza 应该是列表中的第一项,而 Taco 应该是第二项。

这是我当前的代码:

我需要在没有 jQuery 的情况下解决它。

0 投票
1 回答
8 浏览

arrays - 每个 for 循环迭代的变量总和

我想解决这个练习https://www.codewars.com/kata/5648b12ce68d9daa6b000099/train/python 在此处输入图像描述

如何将第一个和第二个循环的计数变量的结果一起计算?第一个循环的结果是 4-2 = 2,现在我想要 2 + 第二个循环的结果的总和 10-6= 4。所以总和应该是 6 。感谢您的提示:)

我不确定这个过程是否适合练习,但我希望它尝试这种方式:)

谢谢 :)